home *** CD-ROM | disk | FTP | other *** search
/ CICA 1993 April / CICA MS Windows - April 1993.iso / unzipped / programr / except / b4dmsg.mak < prev    next >
Makefile  |  1993-03-03  |  661b  |  26 lines

  1. !include <ntwin32.mak>
  2.  
  3. all: b4dmsg.dll
  4.  
  5. the_dll.obj: the_dll.c
  6.       $(cc) $(cdebug) $(cflags) $(cvars) the_dll.c
  7.  
  8. b4dmsg.rc: b4dmsg.mc
  9.     mc b4dmsg.mc
  10.  
  11. b4dmsg.rbj: b4dmsg.rc 
  12.       rc -r -fo b4dmsg.res b4dmsg.rc
  13.       cvtres -$(CPU) b4dmsg.res -o b4dmsg.rbj
  14.  
  15. b4dmsg.dll: b4dmsg.def b4dmsg.rbj the_dll.obj
  16.       $(link) $(linkdebug) \
  17.       -base:0x1C000000     \
  18.       -dll                 \
  19.       -entry:DLLEntryPoint$(DLLENTRY) \
  20.       -out:b4dmsg.dll     \
  21.       b4dmsg.rbj the_dll.obj $(guilibs)
  22.  
  23. main.exe: main.obj main.def
  24.       $(cvtobj) $(cvtdebug) *.obj
  25.       $(link) $(linkdebug) $(guiflags) -out:main.exe main.obj $(guilibs)
  26.